Platform Explorer / Nuxeo Platform LTS 2015 7.10

Component org.nuxeo.search.ui.core.types

Contributions

XML Source

<?xml version="1.0" encoding="UTF-8"?>
<component name="org.nuxeo.search.ui.core.types">

  <require>org.nuxeo.ecm.core.schema.TypeService</require>
  <require>org.nuxeo.ecm.core.CoreExtensions</require>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">
    <schema name="default_search" prefix="defaults" src="schemas/default_search.xsd" />
  </extension>

  <extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">

    <facet name="SavedSearch" perDocumentQuery="false">
      <schema name="common" />
      <schema name="dublincore" />
      <schema name="uid" />
    </facet>

    <!-- For default search -->
    <doctype name="DefaultSearch" extends="Document">
      <facet name="SavedSearch" />
      <facet name="ContentViewDisplay" />
      <facet name="HiddenInNavigation" />
      <schema name="default_search" />
    </doctype>

  </extension>

  <extension target="org.nuxeo.ecm.core.lifecycle.LifeCycleService"
    point="types">
    <types>
      <type name="DefaultSearch">default</type>
    </types>
  </extension>

</component>